Hệ thống bổ nhiệm bác sĩ trong PHP bằng mã nguồn

1 <!DOCTYPE html>
2 <html>
3 <head>
4     <meta charset=
"utf-8">
5     <meta http-equiv=
"X-UA-Compatible" content="IE=edge">
6     <title>medical management system</title>
7     <link rel=
"stylesheet" href="css/bootstrap.min.css">
8     <link rel=
"stylesheet" href="style.css">
9     <style>
10         .error {color: #FF0000;}
11     </style>
12 </head>
13 <body>
14
15
16 <?php
17         
if($_SESSION['adminstatus'] == ""){
18             header(
"location:adminlogin.php");
19         }
20         
21            
22
23      ?>
24
25
26 <div
class="container-fluid">
27         <div
class="header_top">
28             <span style=
"font-size:50px;color:#2c2f84;font-weight:bolder;margin-left:15px;">Doctor Appoinment System</span>
29         </div>
30
31     <!--
this is for menu -->
32     <div
class="navbar navbar-default nav">
33         <nav
class="menu">
34             <ul>
35                 
36                 
37                 
38                 <li><a href=
"addDoctor2.php">Add Doctor</a></li>
39                 <li><a href=
"viewDoctor.php">View Doctor</a></li>
40                 <li><a href=
"viewCustomer.php">View Patient</a></li>
41                 <li><a href=
"viewAppoinment.php">View Appoinment</a></li>
42                 <li><a href=
"viewFeedback.php">View Feedback</a></li>
43                 <li><a href=
"logout.php">Logout</a></li>
44             </ul>
45         </nav>
46     </div>
47     


Gõ tìm kiếm nhanh...